home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / Handmade / ODVersnM.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  661 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ODVersnM.h
  3.  
  4.     Contains:    Code for accessing CFM version info
  5.  
  6.     Owned by:    Chris Linn
  7.  
  8.     Copyright:    © 1995 - 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <1>     10/4/96    CSL        first checked in
  13.     To Do:
  14.     In Progress:
  15.         
  16. */
  17.  
  18. #ifndef _ODVERSNM_
  19. #define _ODVERSNM_
  20.  
  21. #ifndef _ODTYPES_
  22. #include <ODTypes.h>
  23. #endif
  24.  
  25. #pragma lib_export on
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. typedef ODULong ODVersion;
  32.  
  33. ODError ODGetOpenDocVersion( ODVersion *version );
  34. ODError ODGetClassImplementationVersion( SOMClass *somClass, ODVersion *version );
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40. #pragma lib_export off
  41.  
  42. #endif    /* _ODVERSNM_ */
  43.